home *** CD-ROM | disk | FTP | other *** search
/ Clickx 96 / Clickx 96.iso / software / tools / tool / xbmc-10.1.exe / addons / script.module.pil / lib / PIL / ImageGL.py < prev    next >
Encoding:
Python Source  |  2009-04-06  |  483 b   |  29 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id$
  4. #
  5. # OpenGL pixmap/texture interface (requires imToolkit OpenGL extensions)
  6. #
  7. # History:
  8. # 2003-09-13 fl   Added
  9. #
  10. # Copyright (c) Secret Labs AB 2003.
  11. #
  12. # See the README file for information on usage and redistribution.
  13. #
  14.  
  15. ##
  16. # OpenGL pixmap/texture interface (requires imToolkit OpenGL
  17. # extensions.)
  18. ##
  19.  
  20. import _imaginggl
  21.  
  22. ##
  23. # Texture factory.
  24.  
  25. class TextureFactory:
  26.     pass # overwritten by the _imaginggl module
  27.  
  28. from _imaginggl import *
  29.